home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / finacial / wealth2 / install.bat next >
Encoding:
DOS Batch File  |  1993-01-06  |  683 b   |  22 lines

  1. @echo off
  2. echo This batch file copies the file vbrun200.dll from this disk 
  3. echo to your c:\windows directory. 
  4. echo To stop batch file, hold the control (Ctrl) key
  5. echo and press the Break key.
  6. pause Press a key to continue.
  7. if not exist c:\windows\win.ini goto error
  8. copy vbrun200.dll c:\windows 
  9. goto message
  10. :error
  11. echo I could not find the Windows directory named c:\windows
  12. echo You will have to find where this directory is and copy the file
  13. echo vbrun200.dll to it.
  14. goto done
  15. :message
  16. echo To run program, start Windows.  In the Program Manager, select file
  17. echo run, and then type c:\partner\wp
  18. echo Then hit enter.
  19. :done
  20. pause Press a key to exit.
  21. cls
  22.